home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
utility
/
252
/
gemsrc
/
disk.def
< prev
next >
Wrap
Text File
|
1988-02-13
|
664b
|
21 lines
DEFINITION MODULE Disk;
PROCEDURE CheckStatus ( Drive : (* IN *) CARDINAL );
(* See if the media has changed. If so, the inform the system *)
(* that the disk has been changed. Drive specifies the drive *)
(* to be checked ( 1 => A:, 2 => B:, ... ) *)
PROCEDURE SpaceAvailable (
Drive : (* IN *) CARDINAL;
BytesNeeded : (* IN *) LONGCARD ) : BOOLEAN;
(* Return TRUE if enough free space exists on the disk to *)
(* satisfy the number of bytes needed, or FALSE otherwise. *)
(* Drive specifies the drive to be checked. *)
END Disk.